home *** CD-ROM | disk | FTP | other *** search
/ Erect Magazine Special 4 / Erect Magazine Special 4 - Disc 2.iso / mac / Menu.DIR / 00035.ls < prev    next >
Encoding:
Text File  |  1996-11-05  |  712 b   |  31 lines

  1. on exitFrame
  2.   global visible_g
  3.   if visible_g = 0 then
  4.     set tempVisible to 0
  5.     repeat with n = 11 to 18
  6.       if rollOver(n) then
  7.         set the visible of sprite n to 1
  8.         set tempVisible to n
  9.         updateStage()
  10.         exit repeat
  11.       end if
  12.     end repeat
  13.     set visible_g to tempVisible
  14.   else
  15.     if rollOver(visible_g) = 0 then
  16.       set the visible of sprite visible_g to 0
  17.       set tempVisible to 0
  18.       repeat with n = 11 to 18
  19.         if rollOver(n) then
  20.           set the visible of sprite n to 1
  21.           set tempVisible to n
  22.           updateStage()
  23.           exit repeat
  24.         end if
  25.       end repeat
  26.       set visible_g to tempVisible
  27.     end if
  28.   end if
  29.   go(the frame)
  30. end
  31.